home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-2.iso / os2 / rsynth1.zip / proto.h < prev    next >
C/C++ Source or Header  |  1994-11-08  |  366b  |  21 lines

  1. /* $Id: proto.h,v 1.13 1994/11/08 13:30:50 a904209 Exp a904209 $
  2. */
  3. #ifndef PROTO
  4. #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
  5. #define PROTO(ARGS) ARGS
  6. #ifndef NOPROTOFLOAT
  7. #define Float float
  8. #else
  9. #define Float double
  10. #endif
  11. #else
  12. #define PROTO(ARGS) ()
  13. #define Float double
  14. #endif
  15.  
  16. #ifndef __GNUC__
  17. #define inline
  18. #endif
  19.  
  20. #endif /* PROTO */
  21.